Fix capitalisation of on-wire calls for VM.set_platform_std_VGA and
authorEwan Mellor <ewan@xensource.com>
Fri, 8 Dec 2006 11:13:44 +0000 (11:13 +0000)
committerEwan Mellor <ewan@xensource.com>
Fri, 8 Dec 2006 11:13:44 +0000 (11:13 +0000)
VM.set_otherConfig.

Signed-off-by: Ewan Mellor <ewan@xensource.com>
tools/libxen/src/xen_vm.c

index e6c95fc12e5c9c6b758fafdd2b8e05912f6c5722..22ba6cc266bb110eac5057b15129991b20f6df41 100644 (file)
@@ -1303,7 +1303,7 @@ xen_vm_set_platform_std_vga(xen_session *session, xen_vm vm, bool std_vga)
               .u.bool_val = std_vga }
         };
 
-    xen_call_(session, "VM.set_platform_std_vga", param_values, 2, NULL, NULL);
+    xen_call_(session, "VM.set_platform_std_VGA", param_values, 2, NULL, NULL);
     return session->ok;
 }
 
@@ -1479,7 +1479,7 @@ xen_vm_set_otherconfig(xen_session *session, xen_vm vm, xen_string_string_map *o
               .u.set_val = (arbitrary_set *)otherconfig }
         };
 
-    xen_call_(session, "VM.set_otherconfig", param_values, 2, NULL, NULL);
+    xen_call_(session, "VM.set_otherConfig", param_values, 2, NULL, NULL);
     return session->ok;
 }